home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gstype1.h < prev    next >
C/C++ Source or Header  |  1997-05-26  |  7KB  |  251 lines

  1. /* Copyright (C) 1990, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gstype1.h */
  20. /* Client interface to Adobe Type 1 font routines */
  21.  
  22. #ifndef gstype1_INCLUDED
  23. #  define gstype1_INCLUDED
  24.  
  25. /* ------ Normal client interface ------ */
  26.  
  27. #define crypt_charstring_seed 4330
  28. typedef struct gs_type1_state_s gs_type1_state;
  29. #ifndef gx_path_DEFINED
  30. #  define gx_path_DEFINED
  31. typedef struct gx_path_s gx_path;
  32. #endif
  33. #ifndef gs_show_enum_s_DEFINED
  34. struct gs_show_enum_s;
  35. #endif
  36. #ifndef gs_font_type1_DEFINED
  37. #  define gs_font_type1_DEFINED
  38. typedef struct gs_font_type1_s gs_font_type1;
  39. #endif
  40. #ifndef gs_type1_data_s_DEFINED
  41. struct gs_type1_data_s;
  42. #endif
  43. int gs_type1_interp_init(P7(gs_type1_state *pcis, gs_imager_state *pis,
  44.                 gx_path *ppath, const gs_log2_scale_point *pscale,
  45.                 bool charpath_flag, int paint_type,
  46.                 gs_font_type1 *pfont));
  47. void gs_type1_set_lsb(P2(gs_type1_state *pcis, const gs_point *psbpt));
  48. void gs_type1_set_width(P2(gs_type1_state *pcis, const gs_point *pwpt));
  49. /* Backward compatibility */
  50. #define gs_type1_init(pcis, penum, psbpt, charpath_flag, paint_type, pfont)\
  51.   (gs_type1_interp_init(pcis, (gs_imager_state *)((penum)->pgs),\
  52.             (penum)->pgs->path, &(penum)->log2_current_scale,\
  53.             charpath_flag, paint_type, pfont) |\
  54.    ((psbpt) == 0 ? 0 : (gs_type1_set_lsb(pcis, psbpt), 0)))
  55. /*
  56.  * Continue interpreting a Type 1 CharString.  If str != 0, it is taken as
  57.  * the byte string to interpret.  Return 0 on successful completion, <0 on
  58.  * error, or >0 when client intervention is required (or allowed).  The int*
  59.  * argument is where the othersubr # is stored for callothersubr.
  60.  */
  61. #define type1_result_sbw 1        /* allow intervention after [h]sbw */
  62. #define type1_result_callothersubr 2
  63.  
  64. int gs_type1_interpret(P3(gs_type1_state *, const gs_const_string *, int *));
  65.  
  66. /* ------ CharString number representation ------ */
  67.  
  68. /* Define the representation of integers used by both Type 1 and Type 2. */
  69. typedef enum {
  70.  
  71.         /* Values from 32 to 246 represent small integers. */
  72.     c_num1 = 32,
  73. #define c_value_num1(ch) ((int)(byte)(ch) - 139)
  74.  
  75.         /* The next 4 values represent 2-byte positive integers. */
  76.     c_pos2_0 = 247,
  77.     c_pos2_1 = 248,
  78.     c_pos2_2 = 249,
  79.     c_pos2_3 = 250,
  80. #define c_value_pos2(c1,c2)\
  81.   (((int)(byte)((c1) - (int)c_pos2_0) << 8) + (int)(byte)(c2) + 108)
  82.  
  83.         /* The next 4 values represent 2-byte negative integers. */
  84.     c_neg2_0 = 251,
  85.     c_neg2_1 = 252,
  86.     c_neg2_2 = 253,
  87.     c_neg2_3 = 254
  88. #define c_value_neg2(c1,c2)\
  89.   -(((int)(byte)((c1) - (int)c_neg2_0) << 8) + (int)(byte)(c2) + 108)
  90.  
  91. } char_num_command;
  92.  
  93. /* ------ Type 1 & Type 2 CharString representation ------ */
  94.  
  95. /*
  96.  * We define both the Type 1 and Type 2 operators here, because they
  97.  * overlap so much.
  98.  */
  99. typedef enum {
  100.  
  101.         /* Commands with identical functions in Type 1 and Type 2 */
  102.         /* charstrings. */
  103.  
  104.     c_undef0 = 0,
  105.     c_undef2 = 2,
  106.     c_callsubr = 10,
  107.     c_return = 11,
  108.     c_undoc15 = 15,            /* An obsolete and undocumented */
  109.                     /* command used in some very old */
  110.                     /* Adobe fonts. */
  111.     c_undef17 = 17,
  112.  
  113.         /* Commands with similar but not identical functions */
  114.         /* in Type 1 and Type 2 charstrings. */
  115.  
  116.     cx_hstem = 1,
  117.     cx_vstem = 3,
  118.     cx_vmoveto = 4,
  119.     cx_rlineto = 5,
  120.     cx_hlineto = 6,
  121.     cx_vlineto = 7,
  122.     cx_rrcurveto = 8,
  123.     cx_escape = 12,            /* extends the command set */
  124.     cx_endchar = 14,
  125.     cx_rmoveto = 21,
  126.     cx_hmoveto = 22,
  127.     cx_vhcurveto = 30,
  128.     cx_hvcurveto = 31,
  129.  
  130.     cx_num4 = 255,            /* 4-byte numbers */
  131.  
  132.         /* Commands recognized only in Type 1 charstrings. */
  133.  
  134.     c1_closepath = 9,
  135.     c1_hsbw = 13,
  136.  
  137.         /* Commands not recognized in Type 1 charstrings. */
  138.  
  139. #define case_c1_undefs\
  140.     case 16: case 18: case 19:\
  141.     case 20: case 23: case 24:\
  142.     case 25: case 26: case 27: case 28: case 29
  143.  
  144.         /* Commands only recognized in Type 2 charstrings. */
  145.  
  146.     c2_blend = 16,
  147.     c2_hstemhm = 18,
  148.     c2_hintmask = 19,
  149.     c2_cntrmask = 20,
  150.     c2_vstemhm = 23,
  151.     c2_rcurveline = 24,
  152.     c2_rlinecurve = 25,
  153.     c2_vvcurveto = 26,
  154.     c2_hhcurveto = 27,
  155.     c2_shortint = 28,
  156.     c2_callgsubr = 29
  157.  
  158.         /* Commands not recognized in Type 2 charstrings. */
  159.  
  160. #define case_c2_undefs\
  161.     case 9: case 13
  162.  
  163. } char_command;
  164. #define char1_command_names\
  165.   0, "hstem", 0, "vstem", "vmoveto",\
  166.   "rlineto", "hlineto", "vlineto", "rrcurveto", "closepath",\
  167.   "callsubr", "return", "(escape)", "hsbw", "endchar",\
  168.   "undoc15", 0, 0, 0, 0,\
  169.   0, "rmoveto", "hmoveto", 0, 0,\
  170.   0, 0, 0, 0, 0,\
  171.   "vhcurveto", "hvcurveto"
  172. #define char2_command_names\
  173.   0, "hstem", 0, "vstem", "vmoveto",\
  174.   "rlineto", "hlineto", "vlineto", "rrcurveto", 0,\
  175.   "callsubr", "return", "(escape)", 0, "endchar",\
  176.   "undoc15", "blend", 0, "hstemhm", "hintmask",\
  177.   "cntrmask", "rmoveto", "hmoveto", "vstemhm", "rcurveline",\
  178.   "rlinecurve", "vvcurveto", "hhcurveto", "shortint", "callgsubr",\
  179.   "vhcurveto", "hvcurveto"
  180.  
  181. /*
  182.  * Extended (escape) commands in Type 1 charstrings.
  183.  */
  184. typedef enum {
  185.     ce1_dotsection = 0,
  186.     ce1_vstem3 = 1,
  187.     ce1_hstem3 = 2,
  188.     ce1_seac = 6,
  189.     ce1_sbw = 7,
  190.     ce1_div = 12,
  191.     ce1_undoc15 = 15,        /* An obsolete and undocumented */
  192.                     /* command used in some very old */
  193.                     /* Adobe fonts. */
  194.     ce1_callothersubr = 16,
  195.     ce1_pop = 17,
  196.     ce1_setcurrentpoint = 33
  197. } char1_extended_command;
  198. #define char1_extended_command_count 34
  199. #define char1_extended_command_names\
  200.   "dotsection", "vstem3", "hstem3", 0, 0,\
  201.   0, "seac", "sbw", 0, 0,\
  202.   0, 0, "div", 0, 0,\
  203.   "undoc15", "callothersubr", "pop", 0, 0,\
  204.   0, 0, 0, 0, 0,\
  205.   0, 0, 0, 0, 0,\
  206.   0, 0, 0, "setcurrentpoint"
  207.  
  208. /*
  209.  * Extended (escape) commands in Type 2 charstrings.
  210.  */
  211. typedef enum {
  212.     ce2_and    = 3,
  213.     ce2_or = 4,
  214.     ce2_not = 5,
  215.     ce2_store = 8,
  216.     ce2_abs = 9,
  217.     ce2_add = 10,
  218.     ce2_sub = 11,
  219.     ce2_div = 12,        /* same as ce1_div */
  220.     ce2_load = 13,
  221.     ce2_neg = 14,
  222.     ce2_eq = 15,
  223.     ce2_drop = 18,
  224.     ce2_put = 20,
  225.     ce2_get = 21,
  226.     ce2_ifelse = 22,
  227.     ce2_random = 23,
  228.     ce2_mul = 24,
  229.     ce2_sqrt = 26,
  230.     ce2_dup = 27,
  231.     ce2_exch = 28,
  232.     ce2_index = 29,
  233.     ce2_roll = 30,
  234.     ce2_hflex = 34,
  235.     ce2_flex = 35,
  236.     ce2_hflex1 = 36,
  237.     ce2_flex1 = 37
  238. } char2_extended_command;
  239. #define char2_extended_command_count 38
  240. #define char2_extended_command_names\
  241.   0, 0, 0, "and", "or",\
  242.   "not", 0, 0, "store", "abs",\
  243.   "add", "sub", "div", "load", "neg",\
  244.   "eq", 0, 0, "drop", 0,\
  245.   "put", "get", "ifelse", "random", "mul",\
  246.   0, "sqrt", "dup", "exch", "index",\
  247.   "roll", 0, 0, 0, "hflex",\
  248.   "flex", "hflex1", "flex1"
  249.  
  250. #endif                    /* gstype1_INCLUDED */
  251.